home *** CD-ROM | disk | FTP | other *** search
- ; *******************************************
- ; Kart Physics Script
- ; -------------------
- ; Describes some physical properties for the
- ; kart. Can be loaded and changed in runtime
- ; if the scene is reloaded as well.
- ; *******************************************
-
-
- ;/////////////////////////////////////////////
- ;100cc Simulation
- ;/////////////////////////////////////////////
-
-
- ; BASIC BODY
- ; ---------------
- body_mass 3.5
- body_friction_factor 0.65
- body_elasticity 0.3
- body_speed_damp_factor 0.0
-
- body_rot_speed_damp_factor_x 0.1
- body_rot_speed_damp_factor_y 2.5
- body_rot_speed_damp_factor_z 0.2
-
- body_rot_inertia_factor_x 10.8
- body_rot_inertia_factor_y 45.0
- body_rot_inertia_factor_z 10.8
-
- ; BODY DRIVING BEHAVIOR
- ; ---------------------
- body_mass_center_override_x 0.0
- body_mass_center_override_y -0.4
- body_mass_center_override_z -0.1
-
- body_counter_torque_factor 0.4
- body_extra_gravity 0.3
-
- ; BASIC WHEELS
- ; ------------
- wheel_radius_factor 1.3
-
- wheel_mass_front 1.4
- wheel_mass_rear 2.1
-
- wheel_elasticity_front 0.010
- wheel_elasticity_rear 0.015
-
- wheel_rot_inertia_front 1.2
- wheel_rot_inertia_rear 1.7
-
- ; WHEELS DYNAMICS
- ; ---------------
- wheel_friction_factor_front 1.175
- wheel_friction_factor_rear 0.52
- wheel_friction_factor_front_x 0.90
- wheel_friction_factor_rear_x 0.37
-
- wheel_rot_speed_damp_factor_front 0.31
- wheel_rot_speed_damp_factor_rear 0.31
-
- ; STEERING
- ; --------
- max_steering_angle 0.65
- max_speed_full_steering_angle 230.0
- dual_slope_x_value 1.0
- dual_slope_y_value 1.0
-
- ; ENGINE
- ; ------
- engine_power 0.9
- max_engine_rpm_torque 6000.0
-
- min_Torque 1.34
- torque_factor 0.87
- ratio_x 1.65
-
- ; min and max speed in km/h
- min_speed 2.0
- max_speed 51.0
- axle_ratio 3.8
-
- ; BRAKES
- ; ------
- ;Pas de freins avant sur un 100cc
- brake_deceleration_front 0.00
- brake_deceleration_rear 0.5
-
- ; GEAR MANAGEMENT
- ; ---------------
- nr_of_gears 1
- gear_ratio (1.4)
- max_engine_rpm (6000.0)
- min_engine_rpm (2000.0)
-
- ; FRICTION LISTENERS
- ; -------------------
- avg_energy 5.0;8.5
- threshold_factor 1.0
-
-
- ;/////////////////////////////////////////////
-
-
- ; *********************
- ; PARTS ADJUSTEMENTS
- ; *********************
-
-
- ; ------
- ; TIRES
- ; ------
-
- ; tire type
- Tires.Hard.1 1.00 ; no rain
- Tires.Hard.2 0.85 ; rain
-
- Tires.Soft.1 1.15
- Tires.Soft.2 0.95
-
- Tires.Rain.1 1.1
- Tires.Rain.2 1.0
-
- ; pressure influence
- Tires.Pressure.Friction 0.70
-
-
- ; -------
- ; CROWNS
- ; -------
- ; Arrays 78 79 80 81 82 83 84 85
- ;--------------------------------------------------------------------------------------
- Crown.Accel.Factor (1.200,1.170,1.155,1.120,1.070,1.030,0.980,0.910)
- Crown.Speed.Factor (0.850,0.850,0.850,0.900,1.000,1.050,1.100,1.165)
- Crown.Slope.Factor (0.200,0.210,0.270,0.310,0.310,0.310,0.320,0.330)
- Crown.MaxRpmTorque (6500.0,6500.0,6500.0,6500.0,6500.0,6500.0,6500.0,6500.0)
-
- ; sigmoid
- sigmoid_slope 0.6
-
-
- ; -------
- ; FRAME
- ; -------
- ; mass center
- Frame.Percent.MaxTranslate 0.4
-
- ; rigidity
- Frame.Rigidity.Inertia 0.35
- Frame.Rigidity.Damp 0.45
- Frame.Rigidity.Elasticity 0.50
-
-
- ; ------
- ; PIPES
- ; ------
- Pipes.Front.Gain 10.0
- Pipes.Rear.Gain 10.0
-
-
- ; ----------
- ; AXLE WIDTH
- ; ----------
-
- axis_width_factor 0.00020
- axis_width_front 1070
- axis_width_rear 1080
-
-
- ;/////////////////////////////////////////////
-
-
- ; *********************
- ; DAMAGE
- ; *********************
-
-
- ; ------
- ; TIRES
- ; ------
-
- Tires.Hard.DamageSpeed 0.08
- Tires.Soft.DamageSpeed 0.10
- Tires.Rain.DamageSpeed 0.13
-
- ; damage
- Tires.Damage.Friction 0.30
- Tires.Damage.Inertia 0.00
- Tires.Damage.Damp 0.20
- Tires.Damage.MaxPercent 100.0
-
-
- ; -------
- ; FRAME
- ; -------
-
- ; damage
- Frame.Damage.Inertia 0.8
- Frame.Damage.MaxPercent 50.0
- Frame.Damage.HitFactor 0.06
-
-
- ; -------
- ; BRAKES
- ; -------
- Brakes.Damage.Deceleration 0.5
- Brakes.Damage.HitFactor 0.50
- Brakes.Damage.MaxPercent 80.0
-
-
- ; -------
- ; ENGINE
- ; -------
- Engine.Damage.RpmThreshold 2500.0
- Engine.Damage.HitFactor 0.000005
- Engine.Damage.MaxPercent 40.0
- Engine.Damage.Power 1.0
-